#
# Melissa Data Address Object for Windows 32-bit
#
# sample makefile for customers
#
CXX=cl
CXXFLAGS=-Zi -EHsc
LDLIBS=mdAddr.lib
RM=del /q /f

all: aosample.exe

aosample.exe:	aosample.c mdAddr.h mdEnums.h
	$(CXX) $(CXXFLAGS) aosample.c -o $@ $(LDLIBS)

clean:
	$(RM) *.exe *.obj *.ilk *.pdb

